projects
/
feed
/
packages.git
/ commitdiff
commit
grep
author
committer
pickaxe
?
search:
re
summary
|
shortlog
|
log
|
commit
| commitdiff |
tree
raw
|
patch
| inline |
side by side
(parent:
78bf9cc
)
btrfs-progs: Fix init script
author
Stefan Hellermann
<
[email protected]
>
Sat, 6 Dec 2014 15:30:39 +0000
(16:30 +0100)
committer
Stefan Hellermann
<
[email protected]
>
Mon, 8 Dec 2014 13:02:28 +0000
(14:02 +0100)
the init script calls the old btrfsctl util, which is not included in
btrfs-progs anymore. Update the init script to call "btrfs device scan"
which assembles multi device btrfs filesystems.
Signed-off-by: Stefan Hellermann <
[email protected]
>
utils/btrfs-progs/files/btrfs-scan.init
patch
|
blob
|
history
diff --git
a/utils/btrfs-progs/files/btrfs-scan.init
b/utils/btrfs-progs/files/btrfs-scan.init
index f1264ee701d743900ba0efa8b755413d0739a5e5..559fddaae98506a1ed73a39accf71f9794a7f4c9 100644
(file)
--- a/
utils/btrfs-progs/files/btrfs-scan.init
+++ b/
utils/btrfs-progs/files/btrfs-scan.init
@@
-4,6
+4,6
@@
START=19
start() {
- grep -q btrfs /proc/modules && /usr/bin/btrfs
ctl -a
+ grep -q btrfs /proc/modules && /usr/bin/btrfs
device scan
}